module Base
{
craftRecipe Craft into Armor
    {
        time        = 40,
        Category    =  Dakimakura,
        tags        = InHandCraft;CanBeDoneInDark,
        timedAction = Making,
        OnCreate = Recipe.OnCreate.MakeArmor,

        inputs {
         item 1 [Base.Rope],
         item 1 tags[DakiWeapon] flags[Prop2], 
 }
 outputs
        {
        }
}

craftRecipe Undo Armor
    {
        time        = 40,
        Category    =  Dakimakura,
        tags        = InHandCraft;CanBeDoneInDark,
        timedAction = Making,
        OnCreate = Recipe.OnCreate.UndoArmor,

        inputs {
         item 1 tags[DakiArmor] flags[Prop2], 
        }
 outputs
        {
        }
}

craftRecipe Flip Dakimakura
    {
        time        = 0,
        Category    =  Dakimakura,
        tags        = InHandCraft;CanBeDoneInDark,
        OnCreate = Recipe.OnCreate.DakiFlip,
        timedAction = Making,

        inputs {
         item 1 tags[DakiWeapon]  flags[Prop2], 
        }
 outputs
        {
        }
}
}